home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cc_guestbook.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  97 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Ref:
  7. #
  8. # From: "BrainRawt ." <brainrawt@hotmail.com>
  9. # To: bugtraq@securityfocus.com
  10. # Subject: CGI-City's CCGuestBook Script Injection Vulns
  11. # Date: Sat, 29 Mar 2003 18:47:04 +0000
  12.  
  13.  
  14.  
  15. if(description)
  16. {
  17.  script_id(11503);
  18.  script_bugtraq_id(7237);
  19.  script_version ("$Revision: 1.4 $");
  20.  
  21.  
  22.  name["english"] = "cc_guestbook.pl XSS";
  23.  
  24.  script_name(english:name["english"]);
  25.  
  26.  desc["english"] = "
  27. The remote host is running cc_guestbook.pl
  28.  
  29. This CGI is vulnerable to a cross-site scripting attack.
  30.     
  31. An attacker may use this flaw to steal the cookies of your users.
  32.  
  33.  
  34. Solution : Delete this package
  35. Risk factor : Low";
  36.  
  37.  
  38.  
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Checks for the presence of view.php";
  43.  
  44.  script_summary(english:summary["english"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  50.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  51.  family["english"] = "CGI abuses";
  52.  family["francais"] = "Abus de CGI";
  53.  script_family(english:family["english"], francais:family["francais"]);
  54.  script_dependencie("find_service.nes", "http_version.nasl");
  55.  script_require_ports("Services/www", 80);
  56.  exit(0);
  57. }
  58.  
  59. #
  60. # The script code starts here
  61. #
  62.  
  63.  
  64. include("http_func.inc");
  65. include("http_keepalive.inc");
  66.  
  67. port = get_http_port(default:80);
  68.  
  69. if(!get_port_state(port))exit(0);
  70.  
  71.  
  72.  
  73.  
  74. gdir = make_list(cgi_dirs());
  75.  
  76. dirs = make_list("", "/guestbook");
  77. foreach d (gdir)
  78. {
  79.   dirs = make_list(dirs, string(d, "/guestbook"), d);
  80. }
  81.  
  82.  
  83. foreach dir (dirs)
  84. {
  85.  req = http_get(item:string(dir, "/cc_guestbook.pl"), port:port);
  86.  res = http_keepalive_send_recv(port:port, data:req);
  87.  
  88.  if( res == NULL ) exit(0);
  89.  
  90.  if("Please enter a valid email address" >< res &&
  91.     "Please enter your homepage title" >< res)
  92.      {
  93.     security_warning(port);
  94.     exit(0);
  95.     }
  96. }
  97.